home *** CD-ROM | disk | FTP | other *** search
- unit Show2;
-
- interface
-
- uses
- SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls,
- Forms, Dialogs, StdCtrls, Buttons, GrayForm;
-
- type
- TForm2 = class(TForm)
- Label1: TLabel;
- BitBtn1: TBitBtn;
- BitBtn3: TBitBtn;
- procedure BitBtn3Click(Sender: TObject);
- private
- { Private-Deklarationen }
- public
- { Public-Deklarationen }
- end;
-
- var
- Form2: TForm2;
-
- implementation
-
- {$R *.DFM}
-
- procedure TForm2.BitBtn3Click(Sender: TObject);
- begin
- GrayedForm(SELF);
- messagedlg('why not ?',mtconfirmation,[mbok],0);
- UnGrayedForm(SELF);
- end;
-
- end.
-